Do it yourself
导包,定义常量
import json
import os
import requests
HEADERS = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36"
}
2
3
4
5
6
7
8
随便选择一首歌,就 id 为 22709528
的好了。得到它的元数据。
对于网易云音乐的 id 们,一般称歌曲 id 为
music_id
(简写为mid
),专辑 id 为album_id
mid = 28921695
details = requests.get(
"https://music.163.com/api/song/detail?ids=[%d]"%mid, # 可以在中括号中添加更多的音乐id,以逗号分隔
headers=HEADERS
).json()
print(json.dumps(details, ensure_ascii=False, indent=4))
2
3
4
5
6
7
Output
{
"songs": [
{
"name": "Nine Point Eight",
"id": 28921695,
"position": 3,
"alias": [],
"status": 0,
"fee": 8,
"copyrightId": 663018,
"disc": "1",
"no": 7,
"artists": [
{
"name": "Mili",
"id": 339594,
"picId": 0,
"img1v1Id": 0,
"briefDesc": "",
"picUrl": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"img1v1Url": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"albumSize": 0,
"alias": [],
"trans": "",
"musicSize": 0,
"topicPerson": 0
}
],
"album": {
"name": "H△G×Mili",
"id": 2943236,
"type": "专辑",
"size": 8,
"picId": 8897248092051259,
"blurPicUrl": "https://p1.music.126.net/xIa3fW-PIvzK78_GqYycvw==/8897248092051259.jpg",
"companyId": 0,
"pic": 8897248092051259,
"picUrl": "https://p1.music.126.net/xIa3fW-PIvzK78_GqYycvw==/8897248092051259.jpg",
"publishTime": 1379433600007,
"description": "",
"tags": "",
"company": "Wish Records",
"briefDesc": "",
"artist": {
"name": "",
"id": 0,
"picId": 0,
"img1v1Id": 0,
"briefDesc": "",
"picUrl": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"img1v1Url": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"albumSize": 0,
"alias": [],
"trans": "",
"musicSize": 0,
"topicPerson": 0
},
"songs": [],
"alias": [],
"status": 1,
"copyrightId": 0,
"commentThreadId": "R_AL_3_2943236",
"artists": [
{
"name": "Mili",
"id": 339594,
"picId": 0,
"img1v1Id": 0,
"briefDesc": "",
"picUrl": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"img1v1Url": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"albumSize": 0,
"alias": [],
"trans": "",
"musicSize": 0,
"topicPerson": 0
}
],
"subType": "录音室版",
"transName": null,
"onSale": false,
"mark": 0,
"gapless": 0,
"dolbyMark": 0
},
"starred": false,
"popularity": 80.0,
"score": 80,
"starredNum": 0,
"duration": 191346,
"playedNum": 0,
"dayPlays": 0,
"hearTime": 0,
"sqMusic": {
"name": null,
"id": 11187237431,
"size": 22528175,
"extension": "flac",
"sr": 44100,
"dfsId": 0,
"bitrate": 941878,
"playTime": 191346,
"volumeDelta": -53284.0
},
"hrMusic": null,
"ringtone": null,
"crbt": null,
"audition": null,
"copyFrom": "",
"commentThreadId": "R_SO_4_28921695",
"rtUrl": null,
"ftype": 0,
"rtUrls": [],
"copyright": 2,
"transName": null,
"sign": null,
"mark": 0,
"originCoverType": 1,
"originSongSimpleData": null,
"single": 0,
"noCopyrightRcmd": null,
"hMusic": {
"name": null,
"id": 11187237429,
"size": 7656011,
"extension": "mp3",
"sr": 44100,
"dfsId": 0,
"bitrate": 320000,
"playTime": 191346,
"volumeDelta": -53259.0
},
"mMusic": {
"name": null,
"id": 11187237423,
"size": 4593624,
"extension": "mp3",
"sr": 44100,
"dfsId": 0,
"bitrate": 192000,
"playTime": 191346,
"volumeDelta": -50724.0
},
"lMusic": {
"name": null,
"id": 11187237427,
"size": 3062431,
"extension": "mp3",
"sr": 44100,
"dfsId": 0,
"bitrate": 128000,
"playTime": 191346,
"volumeDelta": -49203.0
},
"bMusic": {
"name": null,
"id": 11187237427,
"size": 3062431,
"extension": "mp3",
"sr": 44100,
"dfsId": 0,
"bitrate": 128000,
"playTime": 191346,
"volumeDelta": -49203.0
},
"mvid": 0,
"mp3Url": null,
"rtype": 0,
"rurl": null
}
],
"equalizers": {},
"code": 200
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
再获得它的歌词。
lyrics = requests.get(
"https://music.163.com/api/song/lyric?id=%d&lv=-1&kv=-1&tv=-1" % mid,
headers=HEADERS,
).json()
print(json.dumps(lyrics, ensure_ascii=False, indent=4))
2
3
4
5
Output
{
"sgc": false,
"sfy": false,
"qfy": false,
"transUser": {
"id": 3115294,
"status": 99,
"demand": 1,
"userid": 70740635,
"nickname": "都给我喝豆乳玉麒麟",
"uptime": 1434682801393
},
"lyricUser": {
"id": 3115293,
"status": 99,
"demand": 0,
"userid": 55085075,
"nickname": "十年一剑max",
"uptime": 1434682801393
},
"lrc": {
"version": 11,
"lyric": "[00:12.500]You Ready?\n[00:24.780]Calla lily, carnation, daisy\n[00:27.060]Silently chase away your worries\n[00:30.600]Chrysanthemum, kalanchoe\n[00:32.920]Become your shield whenever you fall asleep\n[00:36.100]I cried out\n[00:38.530]Please don't leave me behind, leave me behind\n[00:41.510]So you held me tight\n[00:44.290]And said I will be just fine, I will be just fine, I will be just fine\n[00:50.960]Petals dance for our valediction\n[00:53.540]And synchronize to your frozen pulsation\n[00:56.980]Take me to where your soul may live in peace\n[00:59.450]Final destination\n[01:02.890]Touch of your skin sympathetically brushed against\n[01:05.730]The shoulders you used to embrace\n[01:08.720]Sparkling ashes drift along your flames\n[01:11.000]And softly merge into the sky\n[01:37.880]Lisianthus\n[01:40.630]Aroma drags me out of where I was\n[01:44.340]Cream rose, stargazer, iris\n[01:46.720]Construct the map that helps me trace your steps\n[01:49.720]Zipped my mouth\n[01:52.350]I just keep climbing up, keep climbing up\n[01:55.130]Justify our vows\n[01:58.000]I know you are right above, you are right above, you are right above\n[02:04.660]Look\n[02:06.010]now\n[02:07.230]I’m on the top of your world, top of your world\n[02:10.420]My darling\n[02:13.140]Here I come, I yell\n[02:14.340]And take a leap to Hell\n[02:29.560]Swirling wind sings for our reunion\n[02:31.940]And nine point eight is my acceleration\n[02:35.380]Take me to where our souls may live in peace\n[02:37.960]Our brand new commencement\n[02:41.300]Touch of your lips compassionately pressed against\n[02:43.780]The skull that you used to cherish\n[02:47.070]Delicate flesh decomposes off my rotten bones\n[02:50.160]And softly merge into the sky\n"
},
"klyric": {
"version": 0,
"lyric": ""
},
"tlyric": {
"version": 3,
"lyric": "[by:niu_wife]\n[00:12.50]准备好吗?\n[00:24.78]马蹄莲、康乃馨、雏菊\n[00:27.06]默默地驱散你的忧虑\n[00:30.60]菊花、长寿花\n[00:32.92]在你熟睡时守护著你\n[00:36.10]我哭了出来\n[00:38.53]拜托,不要丢下我,我不要一个人留在这里\n[00:41.51]於是你抱紧我\n[00:44.29]对我说「我会没事的、我会没事的、我会没事的」\n[00:50.96]花瓣因为我们的惜别翩翩起舞\n[00:53.54]并同步到你冰冻的脉搏\n[00:56.98]带领我前往你灵魂可以和平生活的\n[00:59.45]最终目的地\n[01:02.89]你的肌肤温柔地蹭著\n[01:05.73]你曾经拥抱的肩膀\n[01:08.72]你那闪烁的灰烬沿著火焰\n[01:11.00]轻轻地融化到这片天空里\n[01:37.88]桔梗\n[01:40.63]香气将我拉离了原本的地方\n[01:44.34]白玫瑰、葵白合、鸢尾花\n[01:46.72]铺设成让我追随你脚步的地图\n[01:49.72]我紧闭双唇\n[01:52.35]只是不断向上爬 不断向上爬\n[01:55.13]为了证明我们的誓言\n[01:58.00]我知道你就在那里 就在上面 就在那里\n[02:04.66]看\n[02:06.01]现在\n[02:07.23]我已经站在你世界的顶端了\n[02:10.42]亲爱的\n[02:13.14]我大喊「我来了」\n[02:14.34]然后大步跃进这地狱\n[02:29.56]刮起的旋风为我们的重逢歌唱\n[02:31.94]9.8m/s^2 是我的加速度\n[02:35.38]带我们到灵魂可以获得平静的地方\n[02:37.96]让我们重新开始\n[02:41.30]你温柔的嘴亲吻著\n[02:43.78]这个你所珍爱的头颅\n[02:47.07]你纤细的唇解开了我腐朽的骨头\n[02:50.16]轻轻地融化到这片天空里"
},
"code": 200
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
使用音乐元数据生成文件名
music = details["songs"][0]
artists = ",".join([a["name"] for a in music["artists"]])
title = music["name"]
filename = f"{artists} - {title}.lrc"
print(filename)
2
3
4
5
Output
Mili - Nine Point Eight.lrc
对生成的文件名做处理,使它能当作一个文件名。
(这里采用将某些字符转换成对应的全角的方法)
就示例而言没什么要处理的,但是正常使用总会有的
,比如就有这么一个叫Leo/need
的名字里面就带了一个/
,一定是来找茬的😡👊
filename = filename.translate(
str.maketrans(
{
"/": "/",
"*": "*",
":": ":",
"\\": "\",
">": ">",
"<": "<",
"|": "|",
"?": "?",
'"': """,
}
)
)
print(filename)
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Output
Mili - Nine Point Eight.lrc
写入文件
output_folder = "./"
with open(os.path.join(output_folder, filename), "w+", encoding="utf-8") as fp:
fp.write(lyrics["lrc"]["lyric"])
2
3
似乎有些太简单了?
接下来我们利用网易云音乐的音乐搜索 API,为本地文件匹配并下载歌词。在 samples
文件夹下有几个测试用的音频文件。
os.listdir("./samples/")
['01. せせらぎの向こうに見えた幻想.flac',
'GET ON WiTH FUNKOT.mp3',
'step on your heart.mp3',
'やかもち,琴葉姉妹 - サカサカバンバンバスピスピス.mp3',
'水野あつ,可不 - 無理に笑わなくて良いよ.mp3']
2
3
4
5
显然文件名的格式有很多种,不是很方便读入。虽然也可以分情况尽可能地讨论就是了。
但是除了文件名,我们还可以使用音乐标签。(没有标签的就只能尝试解析文件名了)
为了读取音乐标签,我们使用第三方库mutagen
。安装然后导入它。
也有别的包可以用,比如
tinytag
,是一个很小巧的 tag 查询库,值得一试。↑ 记得用最新的源代码而不是用 release 因为有 bug(←至少到 2024.07.27 的 1.10.1release 里都还有),如果还是有的话记得去开 issue
import mutagen
改变输入文件,查看音乐标签的不同情况。
folder = "./samples/"
file = mutagen.File( # v 改变这里的index就行
os.path.join(folder, os.listdir(folder)[2])
)
print(file.pprint())
if t := file.get("TIT2"):
title = str(t)
else:
title = None
if a := file.get("TPE1"):
artists = list(a)
else:
artists = []
print("[", title, "], by:", artists)
2
3
4
5
6
7
8
9
10
11
12
13
14
Output
MPEG 1 layer 3, 128000 bps (CBR), 44100 Hz, 2 chn, 137.98 seconds (audio/mp3)
COMM==XXX=163 key(Don't modify):L64FU3W4YxX3ZFTmbZ+8/d9/yL6bJXf+RTFn1xL8d2ti0KfLGUG3Nl2WPvz0BCk+S7z/PbupBQwQC9ETcxkE2RXlMREF7cfRQ5QjEhNKbzrnHxwUbBe4B/H1RuxCs1MKE/wQ17Y1wSXdvsAN2KytOFsqgCG86IvBXwJ0l+7vg152QM6fTfPWVfFesJEBwGxs+dUleNsCJMOw7qV2zP8/db+CH5/6owzSQDXIVloNTQNbMJfM7RW6M2uqnMUz/5xoxY28kxj7qGvQaD+QX3ABvb2t40+RHolmidiyj90Kr+ZuOkAKTf+km5Nt7bOa/bOinuGTbYdHoQUyhgcMqqGllmugvIqNZ0HAFOgJGJF3qCKrL6/OtBsixsqFU4cL+NbkFcx8U+kuI7TWAsbFxgst46JwPpezaBkQz3dL0u4HedR/oJz6GvazBehAAmRXWsrEsaY5uHSrK6Hp1JI7a5slIMt3CYgmsaGXs0lsB0+/j7bHUtM4Q9k+tby0BcJgbTtR6YURAByiRHQ6CI5tvtxzQg==
COMM=ID3v1 Comment=eng=163 key(Don't modify):L64FU3
TIT2=step on your heart
TPE1=洛天依
TPOS=1
TRCK=1
TSSE=Lavf56.4.101
[ step on your heart ], by: ['洛天依']
2
3
4
5
6
7
8
9
对于 MP3 文件,可以从 TIT2
和 TPE1
字段分别拿到标题和艺术家。
关于各种格式的字段名可参见 EXIF Tools,不同格式音频文件之间的字段名可能不一致,比如上面那段代码就没法处理 FLAC 文件的标签 (这个时候 tinytag 的方便之处就体现出来了,赞美喵)
此外还需要注意返回值为 None
的问题。还有部分文件的艺术家格式可能不规范,需要取第一项用 /
之类的分割符再切一刀。
不论是从文件名还是从文件标签,总之我们有多种方法拿到音乐文件的标题与艺术家(可以做一个 fallback 机制?)。我们就拿这些字段去请求搜索接口,然后匹配一致(模糊匹配当然也可以)的搜索结果,然后从对应的 music_id
下载歌词就好了。
注意到大部分从网易云音乐下载的音乐文件的注释(
COMM
或DESCRIPTION
字段)都有一大串以163 key(Don't modify):
开头的字符。这是网易云用来存储音乐元数据的方式,内容是以 base64 形式存储的以 AES-128-ECB 算法加密的 json 字符串,密钥为#14ljk_!\]&0U<'(
,解密后可以直接得到mid
。网上也有很多资料,试着自己去探索吧!
假设我们现在得到了这么一组信息,接下来就拿这组信息去请求搜索接口了。
title = "無理に笑わなくて良いよ"
artists = ["水野あつ", "可不"]
2
from urllib import parse
result = requests.get("https://music.163.com/api/search/get/", params={
"s": "+".join([title] + artists),
"limit": 10,
"type": 1,
"offset": 0
}, headers=HEADERS).json()
print(json.dumps(result, ensure_ascii=False, indent=4))
2
3
4
5
6
7
8
9
Output
{
"result": {
"songs": [
{
"id": 1922287635,
"name": "無理に笑わなくて良いよ",
"artists": [
{
"id": 37446417,
"name": "水野あつ",
"picUrl": null,
"alias": [],
"albumSize": 0,
"picId": 0,
"fansGroup": null,
"img1v1Url": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"img1v1": 0,
"trans": null
},
{
"id": 47893107,
"name": "可不",
"picUrl": null,
"alias": [],
"albumSize": 0,
"picId": 0,
"fansGroup": null,
"img1v1Url": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"img1v1": 0,
"trans": null
}
],
"album": {
"id": 140735681,
"name": "無理に笑わなくて良いよ",
"artist": {
"id": 0,
"name": "",
"picUrl": null,
"alias": [],
"albumSize": 0,
"picId": 0,
"fansGroup": null,
"img1v1Url": "https://p1.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"img1v1": 0,
"trans": null
},
"publishTime": 1645286400000,
"size": 1,
"copyrightId": 1418220,
"status": 1,
"picId": 109951167076418171,
"mark": 0
},
"duration": 108837,
"copyrightId": 1418220,
"status": -1,
"alias": [],
"rtype": 0,
"ftype": 0,
"transNames": [
"你不必强迫自己去笑"
],
"mvid": 14576088,
"fee": 8,
"rUrl": null,
"mark": 17717010432
}
],
"hasMore": false,
"songCount": 1
},
"code": 200
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
music = result["result"]["songs"][0]
mid = music["id"]
2
如果匹配成功,就拿着得到的音乐 id 去获取歌词就好了。这里就略过了。
这里有一个简单的 163key 解密示例,需要 pycryptodomex
库。
pip install pycryptodomex
from Cryptodome.Cipher import AES
import base64
def decrypt(data: bytes) -> bytes:
key = "#14ljk_!\\]&0U<'(".encode("utf-8")
cryptor = AES.new(key, AES.MODE_ECB)
return cryptor.decrypt(data)
sample_key = "L64FU3W4YxX3ZFTmbZ+8/fMZ5HO+EQE0d1hry/01n1imgJAjwEU1sIK3DunPCv8JIDfFiwO6gpGCI/omCPk6o+iyDgemCERB74r1dmvVr8Wbogz195VQ2TusMWpQYrr4hv/5sNK3RLF63c1W6YvLbyvK6F1ZqljV++8nuxUKMajm+9C5eM6uLnnXsqxoZ7z6YaVNWdj+A3FGInsVRPMIxls7Lz9KplmWAGoRrSj/P2lheZZvLdikmlDL64LPYugLkxcTQfHFwdDa3NDBPsBwgNldMjhmdKGHER7CrMKF16c+IIias7TFLviRxlj1RDghodu6aXmBkJFBWP8l+2zsTlxS+EaX64C2/+fAQ7mfvO4FZvxwKtRKs+o5oQ2tsNJSvdTNTzUv8ByWjQAEvlmpzRUFACo2gQuRRis/3UGGpp78C/oUnwwIsHvW3oczICzgQBqC8V3o4OHTuKyaqOM3rb6j3NYr7FgyLwLqKc5lJlW8XfeKKdsSJkQCD4MLZqMC/hmTRvL/Ob7ebNgLIGdmL5ClgoxqZ2mphA5EFWWFZydpvvxRrsv8frGMDb/Hd/EdB11TFPcrhCcM9Vd5l+xznQ=="
dec = decrypt(base64.b64decode(sample_key.encode(encoding="utf-8"))).decode(
encoding="utf-8"
)[6:]
# print(dec)
meta = json.loads(dec[: dec.rfind("}") + 1])
print(json.dumps(meta, ensure_ascii=False, indent=4))
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Output
{
"musicId": 785882,
"musicName": "せせらぎの向こうに見えた幻想",
"artist": [
[
"みかん箱",
20578
],
[
"Foxtail-Grass Studio",
19481
]
],
"albumId": 77670,
"album": "pastoral landscape",
"albumPicDocId": 4455221115751031,
"albumPic": "https://p3.music.126.net/JFnBz-eyIBltKt15wjjFUA==/4455221115751031.jpg",
"bitrate": 1029000,
"mp3DocId": "3988c6adcd44acba4094a9a7e0ae987f",
"duration": 176386,
"mvId": 0,
"alias": [],
"transNames": [],
"format": "flac"
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
此外我们有时还会需要下载一整个专辑的音乐的歌词。我目前没有找到未加密的接口用于获取专辑列表。但是专辑列表在网页的源代码中能找到,而且还是以 JSON 形式存在于一个 textarea 中,id 为 song-list-pre-data
,好怪噢。
虽然一下子就能写出它的 XPath 然后 lxml
启动,但是我就是要启动 BeautifulSoup
,豪丸!
pip install beautifulsoup4
假设我们要下载 2084285
这个专辑的所有歌词。先得到专辑中所有的音乐的 id。
from bs4 import BeautifulSoup as BS
aid = 2084285
bs = BS(
requests.get(f"https://music.163.com/album?id={aid}", headers=HEADERS).text,
"html.parser",
)
album = json.loads(bs.find("textarea", id="song-list-pre-data").get_text())
print(json.dumps(album, ensure_ascii=False, indent=4))
2
3
4
5
6
7
8
9
Output
[
{
"privilege": {
"id": 22709523,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 1,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709523",
"score": 10.0,
"duration": 338266,
"type": 0,
"status": 1,
"name": "Everlasting",
"id": "22709523"
},
{
"privilege": {
"id": 22709533,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 2,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709533",
"score": 5.0,
"duration": 306120,
"type": 0,
"status": 1,
"name": "Heaven's Race Guitar Style",
"id": "22709533"
},
{
"privilege": {
"id": 22709527,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 3,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709527",
"score": 5.0,
"duration": 226933,
"type": 0,
"status": 1,
"name": "Blaze",
"id": "22709527"
},
{
"privilege": {
"id": 22709526,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 4,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709526",
"score": 25.0,
"duration": 316506,
"type": 0,
"status": 1,
"name": "Starlight Vision",
"id": "22709526"
},
{
"privilege": {
"id": 22709524,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 5,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709524",
"score": 5.0,
"duration": 295973,
"type": 0,
"status": 1,
"name": "NecroFantasia",
"id": "22709524"
},
{
"privilege": {
"id": 22709535,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 6,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709535",
"score": 10.0,
"duration": 364986,
"type": 0,
"status": 1,
"name": "Constellations",
"id": "22709535"
},
{
"privilege": {
"id": 22709530,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 7,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709530",
"score": 10.0,
"duration": 308466,
"type": 0,
"status": 1,
"name": "Out of Truth",
"id": "22709530"
},
{
"privilege": {
"id": 22709529,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 8,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709529",
"score": 10.0,
"duration": 314653,
"type": 0,
"status": 1,
"name": "Eternal Rite",
"id": "22709529"
},
{
"privilege": {
"id": 22709525,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 9,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709525",
"score": 10.0,
"duration": 309813,
"type": 0,
"status": 1,
"name": "Fallen Heaven",
"id": "22709525"
},
{
"privilege": {
"id": 22709536,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 10,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709536",
"score": 25.0,
"duration": 290733,
"type": 0,
"status": 1,
"name": "Prominence",
"id": "22709536"
},
{
"privilege": {
"id": 22709532,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 11,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709532",
"score": 5.0,
"duration": 365800,
"type": 0,
"status": 1,
"name": "Phantom",
"id": "22709532"
},
{
"privilege": {
"id": 22709531,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 12,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709531",
"score": 10.0,
"duration": 355946,
"type": 0,
"status": 1,
"name": "FloweringNight",
"id": "22709531"
},
{
"privilege": {
"id": 22709528,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 13,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709528",
"score": 15.0,
"duration": 343386,
"type": 0,
"status": 1,
"name": "Nostalgia",
"id": "22709528"
},
{
"privilege": {
"id": 22709537,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 14,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709537",
"score": 10.0,
"duration": 274746,
"type": 0,
"status": 1,
"name": "Eleven Snowdrops",
"id": "22709537"
},
{
"privilege": {
"id": 22709534,
"fee": 0,
"payed": 0,
"st": 0,
"pl": 320000,
"dl": 999000,
"sp": 7,
"cp": 1,
"subp": 1,
"cs": false,
"maxbr": 999000,
"fl": 320000,
"toast": false,
"flag": 256,
"preSell": false,
"playMaxbr": 999000,
"downloadMaxbr": 999000,
"maxBrLevel": "lossless",
"playMaxBrLevel": "lossless",
"downloadMaxBrLevel": "lossless",
"plLevel": "exhigh",
"dlLevel": "lossless",
"flLevel": "exhigh",
"rscl": null,
"freeTrialPrivilege": {
"resConsumable": false,
"userConsumable": false,
"listenType": null,
"cannotListenReason": null,
"playReason": null,
"freeLimitTagType": null
},
"rightSource": 0,
"chargeInfoList": [
{
"rate": 128000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 192000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 320000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 0
},
{
"rate": 999000,
"chargeUrl": null,
"chargeMessage": null,
"chargeType": 1
}
],
"code": 0,
"message": null
},
"djid": 0,
"album": {
"id": 2084285,
"name": "Starlight Vision",
"picUrl": "http://p1.music.126.net/McIfe-dHMi5goNjw2h9AGA==/775155697604384.jpg",
"pic_str": "775155697604384",
"pic": 775155697604384
},
"artists": [
{
"id": 18473,
"name": "Sound Online",
"alia": [
"矢鸨つかさ",
"Tsukasa"
]
}
],
"alias": [],
"fee": 0,
"ftype": 0,
"no": 15,
"publishTime": 0,
"copyrightId": 663018,
"mvid": 0,
"transNames": null,
"commentThreadId": "R_SO_4_22709534",
"score": 10.0,
"duration": 309986,
"type": 0,
"status": 1,
"name": "Starlight Vision (Acoustic Arrange)",
"id": "22709534"
}
]
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
mids = [int(i["id"]) for i in album]
print(mids)
2
Output
[22709523, 22709533, 22709527, 22709526, 22709524, 22709535, 22709530, 22709529, 22709525, 22709536, 22709532, 22709531, 22709528, 22709537, 22709534]
很好我们现在得到了所有的音乐 id。可以将它们全部下载下来了。
但是你有没有注意到,在得到的专辑列表以及先前得到的搜索结果中,除了音乐 id,还包含了每首音乐的标题与艺术家。也就是说没有必要再去请求一遍每首音乐的信息了 —— 好欸!
现在让我们回到本节的主文档中。